﻿@media print {

    .page {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        page-break-before: always;
        border: 2px solid black;
        width: 98%;
        margin: auto;
        margin-bottom:10px;
        margin-top:15px;
        padding-top: 5px;
        padding-bottom: 5px;
        height: 95vh;
    }
        .page .table > :not(caption) > * > *{
            padding:2px;
        }
        .page:last-child {
            page-break-after: avoid;
            /*margin: 3cm*/
        }


    @page {
        size: A4 landscape;
        margin: 3px;
    }

    body {
        /*border: 1px solid black;*/
        /*-webkit-transform: rotate(-90deg) scale(.90,.90);
        -moz-transform: rotate(-90deg)scale(90,90);*/
        width: 100%;
        padding:2px 10px;
        /*margin: 3cm;*/
    }

    h1 {
        font-size: 18pt;
        text-align: center;
        margin-top: 0cm;
        margin-bottom: 0cm;
    }

    p {
        text-align: justify;
        margin-top: 0cm;
    }
}
